home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlasdt.z / dlasdt
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAASSSSDDDDTTTT((((3333SSSS))))                                                          DDDDLLLLAAAASSSSDDDDTTTT((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLASDT - create a tree of subproblems for bidiagonal divide and conquer
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      SUBROUTINE DLASDT( N, LVL, ND, INODE, NDIML, NDIMR, MSUB )
  13.  
  14.          INTEGER        LVL, MSUB, N, ND
  15.  
  16.          INTEGER        INODE( * ), NDIML( * ), NDIMR( * )
  17.  
  18. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  19.      These routines are part of the SCSL Scientific Library and can be loaded
  20.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  21.      directs the linker to use the multi-processor version of the library.
  22.  
  23.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  24.      4 bytes (32 bits). Another version of SCSL is available in which integers
  25.      are 8 bytes (64 bits).  This version allows the user access to larger
  26.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  27.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  28.      only one of the two versions; 4-byte integer and 8-byte integer library
  29.      calls cannot be mixed.
  30.  
  31. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  32.      DLASDT creates a tree of subproblems for bidiagonal divide and conquer.
  33.  
  34. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  35.      N      (input) INTEGER
  36.             On entry, the number of diagonal elements of the bidiagonal
  37.             matrix.
  38.  
  39.      LVL    (output) INTEGER
  40.             On exit, the number of levels on the computation tree.
  41.  
  42.      ND     (output) INTEGER
  43.             On exit, the number of nodes on the tree.
  44.  
  45.      INODE  (output) INTEGER array, dimension ( N )
  46.             On exit, centers of subproblems.
  47.  
  48.      NDIML  (output) INTEGER array, dimension ( N )
  49.             On exit, row dimensions of left children.
  50.  
  51.      NDIMR  (output) INTEGER array, dimension ( N )
  52.             On exit, row dimensions of right children.
  53.  
  54.      MSUB   (input) INTEGER.
  55.             On entry, the maximum row dimension each subproblem at the bottom
  56.             of the tree can be of.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAASSSSDDDDTTTT((((3333SSSS))))                                                          DDDDLLLLAAAASSSSDDDDTTTT((((3333SSSS))))
  71.  
  72.  
  73.  
  74. FFFFUUUURRRRTTTTHHHHEEEERRRR DDDDEEEETTTTAAAAIIIILLLLSSSS
  75.      Based on contributions by
  76.         Ming Gu and Huan Ren, Computer Science Division, University of
  77.         California at Berkeley, USA
  78.  
  79.  
  80. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  81.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  82.  
  83.      This man page is available only online.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.